home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Linux / Kubuntu 8.10 / kubuntu-8.10-desktop-i386.iso / casper / filesystem.squashfs / usr / lib / ubiquity / console-setup / locale < prev   
Text File  |  2008-10-29  |  546b  |  21 lines

  1. #! /bin/sh -e
  2. # If possible, report the intended installation locale rather than the
  3. # current locale. Used by console-setup.
  4. # This must not be installed in /usr/lib/ubiquity/compat; debconf calls
  5. # locale itself, so a locale wrapper cannot source the debconf confmodule.
  6.  
  7. . /usr/share/debconf/confmodule
  8.  
  9. if db_get debian-installer/locale && [ "$RET" ]; then
  10.     LOCALE="$RET"
  11. fi
  12.  
  13. TEXT="$(PATH=/usr/sbin:/usr/bin:/sbin:/bin locale "$@")"
  14. if [ "$LOCALE" ]; then
  15.     printf '%s\n' "$TEXT" | sed "s/=.*/=$LOCALE/"
  16. else
  17.     printf '%s\n' "$TEXT"
  18. fi
  19.  
  20. exit 0
  21.